home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
emulator
/
bsvc-1.000
/
bsvc-1
/
bsvc-1.0.4
/
src
/
Framework
/
Time.hxx
< prev
next >
Wrap
Text File
|
1995-07-26
|
837b
|
35 lines
///////////////////////////////////////////////////////////////////////////////
// $Id: Time.hxx,v 1.1 1994/02/18 19:54:03 bmott Exp $
///////////////////////////////////////////////////////////////////////////////
// Time.hxx
//
// The Time object provides access to the system's time.
//
//
// BSVC "A Microprocessor Simulation Framework"
// Copyright (c) 1993
// By: Bradford W. Mott
// August 12,1993
//
///////////////////////////////////////////////////////////////////////////////
// $Log: Time.hxx,v $
// Revision 1.1 1994/02/18 19:54:03 bmott
// Initial revision
//
///////////////////////////////////////////////////////////////////////////////
#ifndef TIME_HXX
#define TIME_HXX
class Time {
private:
public:
inline Time()
{};
long seconds(); // Returns the current System Time
};
#endif